func time.absDate

7 uses

	time (current package)
		format.go#L560: 	year, month, day, _ := absDate(abs, true)
		format.go#L674: 			year, month, day, yday = absDate(abs, true)
		format_rfc3339.go#L22: 	year, month, day, _ := absDate(abs, true)
		time.go#L562: 	year, _, _, yday := absDate(abs, false)
		time.go#L962: 	return absDate(t.abs(), full)
		time.go#L966: func absDate(abs uint64, full bool) (year int, month Month, day int, yday int) {
		zoneinfo.go#L330: 	year, _, _, yday := absDate(uint64(sec+unixToInternal+internalToAbsolute), false)